What is the purpose of `container` class in Tailwind?
Description : The `container` class in Tailwind is used to set the max-width and center the content horizontally.
Answer :
The `container`classapplies a max-width that is responsive and centers the content. For example:`<div class='container mx-auto'>`. The `mx-auto` ensures that the container is centered horizontally.